.navbox {
  position: absolute;
  bottom: 5px;
}

.navbox-title {
  font-size: 32px;
  font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
  font-weight: bold;
  color: #ffffff;
  line-height: 42px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.navbox-list {
  display: flex;
  flex-wrap: wrap;
}
.navbox-item {
  padding: 8px 12px;
  box-sizing: border-box;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #ffffff;
  border-radius: 18px;
}
.navbox-item.active,
.navbox-item.selected{
  color:#fff;
  background-color: #af2314;
}
.navbox-item a{
  color:#fff;
}
.home-header-wrap {
  width: 100vw;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.home-header-wrap .inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-box {
  position: relative;
  z-index: 0;
}

.nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  height: 56px;
  background-color: transparent;
}

.nav-list {
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
}

.nav-list span {
  position: relative;
  line-height: 56px;
  display: inline-block;
}

.nav-list span a {
 color: #fff;
}


.nav-list-more {
  opacity: 0;
  width: 120px;
  position: absolute;
  top: 56px;
  background-color: #af2314;
  box-sizing: border-box;
  transition: 1s;
    z-index: 1000;
}
.nav-list-more p {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-box .nav-list-more p > a{
 color: #e6b145;
}

.nav-list-more p:hover {
  background-color: #e4a822;
}

.nav-list-more p:hover a {
  color: #fff;
}
.nav-list:hover .nav-list-more {
  transform: scale(1, 1);
  opacity: 1;
}
.nav-list:hover span::before {
  content: '';
  position: absolute;
  left: -3px;
  top: -1px;
  width: 72px;
  height: 3px;
  z-index: 10;
  background: #e4a822;
}
.menu-mobile {
  position: fixed;
  right: 40px;
  top: 90px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 50px;
  height: 60px;
  z-index: 1;
  display: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  cursor: pointer;
}

.menu-mobile.active {
  right: 50px;
  z-index: 3;
}

.menu-mobile.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-mobile.active .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-mobile.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-line {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  margin: 2.5px auto;
  background: #fff;
  transform-origin: center center;
  -webkit-transform-origin: center center;
}

.common-nav-wrap {
  position: relative;
  padding-top: 30px;
}
.common-nav-top {
  width: 348px;
  height: 88px;
  background: #af2314;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-family: PingFang-SC-Heavy, PingFang-SC;
  font-weight: 800;
  color: #ffffff;
  border-left: 7px solid #e4a822;
  position: absolute;
  top: -88px;
  z-index: 1;
}
.common-link {
  display: flex;
}
.common-link span {
  font-size: 16px;
  font-family: PingFang-SC-Medium, PingFang-SC;
  font-weight: 500;
  color: #333333;
  line-height: 22px;
  cursor: pointer;
}
.common-link-line {
  margin: 0 10px;
}
.common-link span:last-of-type {
  color: #af2314;
}
.common-nav-tab {
  width: 100%;
  height: 64;
  background-color: #fff;
  display: flex;
  overflow-x: scroll;
  margin: 30px 0;
}
.common-nav-tab-item.active {
  background: #af2314;
  color: #ffffff;
}
::-webkit-scrollbar {
  display: none;
}
.common-nav-tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 64px;
  font-size: 18px;
  font-family: MicrosoftYaHei;
  color: #333333;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .nav-box {
    display: block;
    margin-top: 0;
  }

  .nav-box .home-header-title {
    display: none;
  }
.nav-box  .home-header-wrap{
   display: none;
}
  .nav-box .home-header-inner {
    display: none;
  }

  .nav {
    width: auto;
  }
}

@media (max-width: 850px) {
  .navbox-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .navbox {
    bottom: 40px;
  }

  .home-header-wrap {
    border-bottom: none;
    display: none;
  }
  .menu-mobile {
    display: flex;
  }

  .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -150px;
    height: 100%;
    width: 150px;
    background-color: rgba(175, 35, 20, 0.7);
    opacity: 0;
  }

  .nav:hover {
    background-color: #af2314;
  }

  .nav-list:hover {
    color: #fff;
  }

  .nav-list span::after {
    position: absolute;
    bottom: -22px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    content: '';
    transition: 0.5s;
    -webkit-transition: 0.5s;
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
  }

  .nav-list:hover span::after {
    transform: scale(1, 1);
  }

  .nav.active {
    right: 0;
    z-index: 3;
    opacity: 1;
  }

  .nav-list {
    flex: none;
    width: 100%;
  }

  .nav-list span::after {
    bottom: -12px;
  }

  .nav-list-more {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    width: calc(100% - 150px);
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    z-index: 2;
    box-sizing: border-box;
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    transform-origin: right center;
  }

  .nav-list-more-inner {
    padding-top: 50px;
  }

  .nav-list-more-inner .title {
    margin-bottom: 30px;
  }

  .nav-list-more-list {
    height: auto;
    margin-right: 20px;
  }

  .nav-list-more-list .item {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .menu-mobile {
    right: 26px;
  }
}

@media (max-width: 450px) {
  .menu-mobile {
    right: 9px;
  }

  .nav-list-more {
    padding: 26px 10px;
  }

  .nav-list-more img {
    width: 100%;
  }
  .common-nav-top {
    display: none;
    width: 300px;
    height: 60px;
  }
}
